type flag.stringValue
9 uses
flag (current package)
flag.go#L240: type stringValue string
flag.go#L242: func newStringValue(val string, p *string) *stringValue {
flag.go#L244: return (*stringValue)(p)
flag.go#L247: func (s *stringValue) Set(val string) error {
flag.go#L248: *s = stringValue(val)
flag.go#L252: func (s *stringValue) Get() any { return string(*s) }
flag.go#L254: func (s *stringValue) String() string { return string(*s) }
flag.go#L596: case *stringValue:
flag.go#L633: if _, ok := flag.Value.(*stringValue); ok {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |